heartbeatservice / HeartbeatServiceSolution

0 stars 2 forks source link

Prof -Search on Add Professional page is not working #14

Closed naveed84n closed 9 years ago

naveed84n commented 9 years ago

If you goto the Administration page and then Professional Page the search functionality is not working

amirsaleem commented 9 years ago

What type of search is it going to be . I see there is an issue with search. We have method that is searching with company id and professional name. My question is would user know about the company id?

public List GetProfessionals(int CompanyId, string ProfessionalName) { return professionalRepository.GetProfessionals(CompanyId, ProfessionalName); }

   public List<Professional> GetProfessionals(int CompanyId)
   {
       return professionalRepository.GetProfessionals(CompanyId,null);
   }
tayyibs commented 9 years ago

I would assume that the company id would be know to the application based on who is logged in to the system. On Dec 21, 2014 11:41 PM, "amirsaleem" notifications@github.com wrote:

What type of search is it going to be . I see there is an issue with search. We have method that is searching with company id and professional name. My question is would user know about the company id?

public List GetProfessionals(int CompanyId, string ProfessionalName) { return professionalRepository.GetProfessionals(CompanyId, ProfessionalName); }

public List GetProfessionals(int CompanyId) { return professionalRepository.GetProfessionals(CompanyId,null); }

— Reply to this email directly or view it on GitHub https://github.com/heartbeatservice/HeartbeatServiceSolution/issues/14#issuecomment-67801639 .

naveed84n commented 9 years ago

That's correct, assign ticket back to him

Thanks & Regards, Naveed Aziz Sr. Product Designer TriZetto Corporation Office: (908) 994-3750 Cell: (917) 443-6456

On Dec 22, 2014, at 12:44 AM, tayyibs notifications@github.com wrote:

I would assume that the company id would be know to the application based on who is logged in to the system. On Dec 21, 2014 11:41 PM, "amirsaleem" notifications@github.com wrote:

What type of search is it going to be . I see there is an issue with search. We have method that is searching with company id and professional name. My question is would user know about the company id?

public List GetProfessionals(int CompanyId, string ProfessionalName) { return professionalRepository.GetProfessionals(CompanyId, ProfessionalName); }

public List GetProfessionals(int CompanyId) { return professionalRepository.GetProfessionals(CompanyId,null); }

— Reply to this email directly or view it on GitHub https://github.com/heartbeatservice/HeartbeatServiceSolution/issues/14#issuecomment-67801639 .

— Reply to this email directly or view it on GitHub.

amirsaleem commented 9 years ago

Okay so application would know which customer ID it is. but there is a textbox and a search button. In textbox you would want to put something and this textbox is not prepopulated with companyID, companyname etc. I am not able to understand the flow with the companyID.

On Mon, Dec 22, 2014 at 3:34 PM, naveed84n notifications@github.com wrote:

That's correct, assign ticket back to him

Thanks & Regards, Naveed Aziz Sr. Product Designer TriZetto Corporation Office: (908) 994-3750 Cell: (917) 443-6456

On Dec 22, 2014, at 12:44 AM, tayyibs notifications@github.com wrote:

I would assume that the company id would be know to the application based on who is logged in to the system. On Dec 21, 2014 11:41 PM, "amirsaleem" notifications@github.com wrote:

What type of search is it going to be . I see there is an issue with search. We have method that is searching with company id and professional name. My question is would user know about the company id?

public List GetProfessionals(int CompanyId, string ProfessionalName) { return professionalRepository.GetProfessionals(CompanyId, ProfessionalName); }

public List GetProfessionals(int CompanyId) { return professionalRepository.GetProfessionals(CompanyId,null); }

— Reply to this email directly or view it on GitHub < https://github.com/heartbeatservice/HeartbeatServiceSolution/issues/14#issuecomment-67801639>

.

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/heartbeatservice/HeartbeatServiceSolution/issues/14#issuecomment-67886289 .

tayyibs commented 9 years ago

Working fine now