1
Answer

Write a class that explicitly implements the following inter

Ask a question
Dave Green

Dave Green

10y
1.2k
1

Write a class that explicitly implements the following interfaces.


public interface ICan

{

bool DoTheJob();

decimal Sum (decimal a, decimal b, decimal c);

}


public interface ICannot

{

bool DoTheJob();

}


Thank you for the help!!!


Answers (1)